home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_2_create file using fileIO xtra = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  288 b   |  12 lines

  1. on mouseDown
  2.   set whereItsGoing to getOSDirectory()
  3.   set myFile to new(xtra("fileio"))
  4.   set fileName to whereItsGoing & "run4hills.txt"
  5.   createFile(myFile, fileName)
  6.   openFile(myFile, fileName, 0)
  7.   writeString(myFile, "first bit")
  8.   closeFile(myFile)
  9.   set myFile to 0
  10.   beep()
  11. end
  12.